home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / dcom / modems-part1 / 6625 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  4.9 KB

  1. Path: news.mathworks.com!gatech!gt-news!aist025
  2. From: keith.watson@gtri.gatech.edu (Keith R. Watson)
  3. Newsgroups: comp.dcom.modems
  4. Subject: Re: HOW DO I RECONFIGURE MODEM FROM MAC TO PC?
  5. Date: 1 Mar 1996 14:00:11 GMT
  6. Organization: GTRI/AIST
  7. Message-ID: <4h701o$9gk_001@news.gatech.edu>
  8. References: <4gv57d$rla@eiger.pncl.co.uk>
  9. NNTP-Posting-Host: aist025.gtri.gatech.edu
  10. X-Newsreader: News Xpress Version 1.0 Beta #4
  11.  
  12. In article <4gv57d$rla@eiger.pncl.co.uk>,
  13.    profitby@pncl.co.uk (Stephen Begg) wrote:
  14. >We have a modem that was used with a Mac but need to run it with a PC.
  15. >It does not have any software with it so how do we reconfigure it to be 
  16. >recognised by a PC?  It is not recognised at all now.
  17. >Modem is a (secondhand) Supra FaxModem v.32 14,400bps (it also says 
  18. v.42 
  19. >bis and MNP 2-5??)
  20. >
  21. >Help asap is really appreciated, by email please.
  22. >
  23. >Stephen
  24. >
  25. >PS We use Trumpet Winsock on a PC with Windows 3.11 
  26. >
  27.  
  28.  
  29. For a complete listing of the AT commands for Supra modems see 
  30. ftp://ftp.supra.com/pub/gen_info/at_list.txt
  31.  
  32. Modem setup string for SupraFaxModem 14.4 & 28.8.
  33.  
  34. The set up string for the modem configures its communications mode. 
  35. Always be sure to double check all commands in the modem's manual as the 
  36. AT command set is an informal standard. Even though they are the same 
  37. model, different version may react differently to the same command.
  38.  
  39. &F2    Restore factory defaults for
  40.        use with IBM-PC/compatible.
  41.  
  42. &S1    DSR follows EIA specification.
  43.        Required for hardware handshaking.
  44.  
  45. &C1    DCD follows carrier state.
  46.        Required for hardware handshaking.
  47.  
  48. W1     Result codes reported. Reports error
  49.        correction being used, DTE, and DCE data rates.
  50.        Helps in trouble shooting connection problems.
  51.            For 14.4
  52.              CONNECT 38400
  53.              PROTOCOL LAPM
  54.              CARRIER  14400
  55.  
  56.            For 28.8
  57.              CONNECT 57600
  58.              PROTOCOL LAPM
  59.              CARRIER  28800
  60.  
  61. S11=n  DTMF Tone Duration/Spacing
  62.        (35 to 102 1/100 seconds) (Default is 95)
  63.        Set spacing and duration of  touch tone
  64.        tones in 0.1 second increments. Values of
  65.        n<60 may cause dialing errors on some phone
  66.        systems. You would use this to decrease the
  67.        amount of time it takes to dial the phone.
  68.        Its nice when you have to redial a lot.
  69.            n = 70 (0.70 second delay between tones)
  70.  
  71. Nn     AutoMode Selection. Carrier Rate when
  72.        Originating Call.
  73.            n = 0 (Connect ONLY at rate set in S37 register)
  74.            n = 1 (Connect at highest rate supported by
  75.                   both modems. [default])
  76.  
  77. S37=n  Forced Single Carrier Rate. Forces modem
  78.        to connect at a specific speed and not
  79.        negotiate a higher one. This is needed on
  80.        machines that don't have 16550AFN UART's so
  81.        that the serial port doesn't over run the
  82.        processor under Windows.
  83.           n = 6 (2400bps)
  84.           n = 9 (9600bps)
  85.  
  86. Example: SupraFaxModem 28.8 on a PC with a 16550
  87.          UART running at maximum data rate.
  88.  
  89.             AT&F2&S1&C1W1S11=70
  90.  
  91. Example: SupraFaxModem 28.8 on a PC without a 16550
  92.          UART running at 9600bps so data doesn't
  93.          overrun the PC.
  94.  
  95.             AT&F2&S1&C1W1S11=70N0S37=9
  96.  
  97. Example: SupraFaxModem 28.8 on a PC without a 16550
  98.          UART running at 2400bps so data doesn't
  99.          overrun the PC.
  100.  
  101.              AT&F2&S1&C1W1S11=70N0S37=6
  102.  
  103.  
  104. Dialing strings are also part of the AT command set but are generally 
  105. used in a different part of the communications program. Their purpose is 
  106. to control the dialing process rather than the communications mode of 
  107. the modem. Always be sure to double check all commands in the modems 
  108. manual as the AT command set is an informal standard.
  109.  
  110. D    Dial the phone.
  111.  
  112. T    Dial using touch tone.
  113.  
  114. P    Dial using pulse.
  115.  
  116. W    Wait for dial tone before processing next
  117.      character in the dial string. This is very
  118.      useful when you have to dial 8 or 9 to get
  119.      an outside line.
  120.  
  121. @    Wait for 5 seconds of silence before continuing.
  122.  
  123. ,    Pause before dialing next character in dial string. 
  124.  
  125. *70  In some areas this it is *71. Disable call waiting.
  126.      This is required for reliable communications. If
  127.      you have call waiting and don't disable it the
  128.      communications could be garbled and/or the modem
  129.      will just hangup when you get an incoming call.
  130.  
  131. -    This does nothing. It can be used in the phone
  132.      number to make it more readable for the user.
  133.  
  134.  
  135. Example: Dial outside line on a PBX 555-5555.
  136.  
  137.         ATDT9,555-555
  138.              or
  139.         ATDT9W555-555
  140.              or
  141.         ATDT8,555-555
  142.              or
  143.         ATDT8W555-555
  144.  
  145.  
  146. Example: Dialing 555-5555 and disabling call waiting.
  147.  
  148.         ATDT*70,555-5555
  149.         or
  150.         ATDT*70W555-5555
  151.  
  152. -------------
  153.  
  154. Keith R. Watson                        GTRI/AIST
  155. Computer Services Specialist IV        Georgia Institute of Technology
  156. keith.watson@gtri.gatech.edu           Atlanta, GA  30332-0816
  157. 404-894-0836
  158.